home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / uemacs-3.000 / uemacs-3 / uemacs-3.8 / Makefile,v < prev    next >
Encoding:
Text File  |  1995-09-22  |  770 b   |  43 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     moss:1.1; strict;
  6. comment    @# @;
  7.  
  8.  
  9. 1.1
  10. date    95.09.22.22.42.23;    author moss;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @CFLAGS=        -O
  25.  
  26. OFILES=        ansi.o basic.o bind.o buffer.o display.o file.o \
  27.         fileio.o hp150.o line.o lock.c main.o random.o region.o \
  28.         search.o spawn.o tcap.o termio.o vt52.o window.o word.o \
  29.         exec.o eval.o isearch.o
  30.  
  31. CFILES=        ansi.c basic.c bind.c buffer.c display.c  file.c \
  32.         fileio.c hp150.c line.c lock.c main.c random.c region.c \
  33.         search.c spawn.c tcap.c termio.c vt52.c window.c word.c \
  34.         exec.c eval.c isearch.c
  35.  
  36. HFILES=        estruct.h edef.h efunc.h epath.h ebind.h evar.h esearch.h
  37.  
  38. emacs:        $(OFILES)
  39.         $(CC) $(CFLAGS) $(OFILES) -ltermcap -lc -o emacs
  40.  
  41. $(OFILES):    $(HFILES)
  42. @
  43.